| tk_winDialogString {GCDkit} | R Documentation |
Tcl/Tk replacement for the MS Windows-specific function 'winDialogString'.
tk_winDialogString(message="Enter variable",default="",returnValOnCancel=NULL)
message |
Character. The information field of the dialog box. |
default |
Character; the default string. |
returnValOnCancel |
Character; a value to be returned when the dialogue is canceled. |
This is a platform-independent implementation of the MS Windows-specific function
'winDialogString',
written using the Tcl/Tk.
A character string giving the contents of the text box when Ok was pressed,
or value specified by 'returnValOnCancel' if Cancel was pressed.
Vojtěch Janoušek, vojtech.janousek@geology.cz
winDialogString tkentry tk_winDialog tcltk-package
## Not run: tk_winDialogString(message="Enter x value",default="15.7") ## End(Not run)